home *** CD-ROM | disk | FTP | other *** search
/ Total Java Scripts / Total Java Scripts.iso / Dhtml / button / hotkey.js < prev    next >
Encoding:
Text File  |  1998-10-31  |  329 b   |  15 lines

  1.  
  2. if (document.layers)
  3. document.captureEvents(Event.KEYPRESS)
  4. function backhome(e){
  5. var targeturl="index.htm"
  6. if (document.layers){
  7. if (e.which==104||e.which==72)
  8. window.location=targeturl
  9. }
  10. else if (document.all){
  11. if (event.keyCode==104||event.keyCode==72)
  12. window.location=targeturl
  13. }
  14. }
  15. document.onkeypress=backhome